in galleryformatter.module

    $renderitems['slides'][$delta]['alt'] = (isset($item['alt']) && !empty($item['alt'])) ? $item['alt'] : $item['filename'];
    $item['alt'] = $renderitems['slides'][$delta]['alt'];
    // If the title is empty use description, alt or the node title in that order.
        //ZZZZ mODIFICAT DE FLORIN
        //  start scos
//    if (empty($item['data']['title'])) {
//      if (!empty($item['data']['description'])) {
//        $title = $description;
//      }
//      elseif (!empty($item['data']['alt'])) {
//        $title = $alt;
//      }
//      else {
//        $title = $entity->title;
//        // if we have more than one image, add the image count to the title so they are not all the same.
//        $title = ($num_of_images > 1) ? $title . t(' image ') . ($delta + 1) : $title;
//      }
//    }
        // end scos
    $title = $item['title'];
    //ZZZZ mODIFICAT DE FLORIN end